home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ AOL Tray Icon.xpl < prev    next >
Text File  |  2002-10-29  |  1KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Internet\America Online"
  5. "UIPATH 2"="Program Options\Other Programs\America Online"
  6. "NAME"="AOL Tray Icon Startup Option"
  7. "VERSION"="1.01"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show AOL Tray Icon"
  10. "DESCRIPTION 1"="Enables or disables the displaying of the AOL icon in the system tray, which is usually to the right of the taskbar area. Note that you should remove "AOL Tray Icon" from your Startup Group as well if you wish to unload it from memory.  Otherwise it simply will load and not show the tray icon (which is a pointless waste of resources).  This procedure can be easily accomplished through X-Setup or manually."
  11. "DESCRIPTION 2"="This was tested with AOL 7.0 but may work with other versions as well."
  12. "AUTHOR"="CptSiskoX (Xteq Systems)"
  13. "CONTACTURL"="www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  16.  
  17. sP="HKLM\SOFTWARE\America Online\America Online\CurrentVersion\EnableTrayIcon" 'Dword 1=enable 0=disable
  18.  
  19. Sub Plugin_Initialize 
  20.   i=RegReadValue(sP)
  21.   if i=1 then SetUIElement 1,true
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.   b=GetUIElement(1)
  29.  if b=true then
  30.     Call RegWriteValue(sP,1,2)
  31. else
  32.     if RegValueExists(sP) then Call RegDeleteValue(sP)
  33.  end if
  34.  
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.  
  40.